home *** CD-ROM | disk | FTP | other *** search
/ NetNews Offline 2 / NetNews Offline Volume 2.iso / news / comp / lang / c++-part1 / 4409 < prev    next >
Encoding:
Text File  |  1996-08-06  |  748 b   |  27 lines

  1. Path: isar.de!news
  2. From: Gerson Kurz <dekonstruktor@pergamon.isar.de>
  3. Newsgroups: comp.lang.c++
  4. Subject: why is dat ?
  5. Date: Tue, 30 Jan 1996 08:44:24 +0100
  6. Organization: Pergamon Sued GmbH
  7. Message-ID: <310DCC58.798E@pergamon.isar.de>
  8. NNTP-Posting-Host: diskursplateau.pergamon.isar.de
  9. Mime-Version: 1.0
  10. Content-Type: text/plain; charset=us-ascii
  11. Content-Transfer-Encoding: 7bit
  12. X-Mailer: Mozilla 2.0b4 (WinNT; I)
  13.  
  14. hi guys, this is my first msg here so I don't know if this has 
  15. been answered 10^50 times before but here it goes:
  16.  
  17. class A {};
  18. class B : public A {};
  19.  
  20. B* pointer_to_B;
  21. A** pointer_to_pointer_to_A = &pointer_to_B;
  22.  
  23. will result in an error (using MSVC40, wl4) headed "improved
  24. ansi comp."
  25.  
  26. why is dat ? (boogie down productions, 1989)
  27.